home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / taropyon / silib / inc / dlg / dlgstd1.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  496 b   |  31 lines

  1. #ifndef    _DLG_DLGSTD1_H
  2. #define    _DLG_DLGSTD1_H
  3.  
  4. #include    <stdarg.h>
  5.  
  6. #ifndef    _SIDLG_H
  7. #    include    <sidlg.h>
  8. #endif
  9.  
  10. typedef struct
  11. {
  12.     unsigned int    att;
  13.     unsigned int    stt;
  14.     FRAME_T            tfr;        /* タイトル表示範囲    */
  15.     struct
  16.     {
  17.         int            evNo;
  18.         void        *ptr;
  19.         int            (*func)(int,EVDAT_T *);
  20.     } closeEv;
  21.     struct
  22.     {
  23.         COLOR_T        dlgBac, dlgHil, dlgSha;
  24.         COLOR_T        ttlBac, ttlHil, ttlSha;
  25.     } col;
  26. } DLGSTD1_T;
  27.  
  28. extern int        DLG_setType_std1( DLG_T *dlg, DLGSTD1_T *dlgPara );
  29.  
  30. #endif
  31.